home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / stdafx.h9 < prev    next >
Encoding:
Text File  |  2001-09-22  |  2.1 KB  |  64 lines

  1. /******************************************************************/
  2. /*                                                                */
  3. /*                      TurboCAD for Windows                      */
  4. /*                   Copyright (c) 1993 - 2001                    */
  5. /*             International Microcomputer Software, Inc.         */
  6. /*                            (IMSI)                              */
  7. /*                      All rights reserved.                      */
  8. /*                                                                */
  9. /******************************************************************/
  10.  
  11. // stdafx.h : include file for standard system include files,
  12. //      or project specific include files that are used frequently,
  13. //      but are changed infrequently
  14.  
  15. #if !defined(AFX_STDAFX_H__7364EA65_AEB3_11D2_8C26_00403338C504__INCLUDED_)
  16. #define AFX_STDAFX_H__7364EA65_AEB3_11D2_8C26_00403338C504__INCLUDED_
  17.  
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif // _MSC_VER > 1000
  21.  
  22. #define STRICT
  23. #ifndef _WIN32_WINNT
  24. #define _WIN32_WINNT 0x0400
  25. #endif
  26. #define _ATL_APARTMENT_THREADED
  27.  
  28.  
  29. #include <afxwin.h>
  30. #include <afxext.h>         // MFC extensions
  31. #include <afxdisp.h>
  32. #include <afxcmn.h>            // MFC support for Windows Common Controls
  33.  
  34. #include <atlbase.h>         // MFC support for ActiveX Controls
  35.  
  36.  
  37. //You may derive a class from CComModule and use it if you want to override
  38. //something, but do not change the name of _Module
  39. extern CComModule _Module;
  40. #include <atlcom.h>
  41.  
  42.  
  43.  
  44. #include "imsigx.h"
  45.  
  46. #define DM_INVERT        0xF0
  47. #define DM_CHECKBITMAP    0x02
  48. #define DM_BLACK        0x01
  49. #define DM_WHITE        0x00
  50.  
  51. #define CHECK_HRESULT(hRes) if (FAILED(##hRes)) throw hRes;
  52. #define RELEASE(pI) if (pI != NULL) pI->Release();
  53.  
  54. extern COleVariant varMissing;
  55. extern COleVariant varTrue;
  56. extern COleVariant varFalse;
  57.  
  58. typedef LPDISPATCH   (__stdcall * GRAPHICGETDISPATCH)(long g, LPDISPATCH* ppGraphics);
  59.  
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62.  
  63. #endif // !defined(AFX_STDAFX_H__7364EA65_AEB3_11D2_8C26_00403338C504__INCLUDED)
  64.